home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Teach Yourself Web Publi…sional Reference Edition)
/
Teach Yourself Web Publishing HTML 3.2.iso
/
mac
/
iso9660
/
SOURCE
/
CHAP27
/
HOMEC.TXT
< prev
next >
Wrap
Text File
|
1996-05-28
|
454b
|
20 lines
#!/bin/sh
# this is the file that contains the number of accesses.
countfile=/home/www/Web/Examples/More_HTML/chap09/home.count
# here's where we update the current count; every time this
# script is run we increment the number
nums=`cat $countfile`
nums=`expr $nums + 1`
# now update the countfile itself
echo $nums > /tmp/countfile.$$
cp /tmp/countfile.$$ $countfile
rm /tmp/countfile.$$
# and output the new number
echo $nums